fix static path bug

FFIB 5 年之前
父节点
当前提交
e9264fe518
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      kodosale/settings.py

+ 1 - 0
kodosale/settings.py

@@ -164,6 +164,7 @@ USE_TZ = True
164 164
 # https://docs.djangoproject.com/en/1.11/howto/static-files/
165 165
 
166 166
 STATICFILES_DIRS = (
167
+    os.path.join(BASE_DIR, "simditor", "static"),
167 168
     os.path.join(PROJ_DIR, 'static').replace('\\', '/'),
168 169
 )
169 170